This sample code for Power coordinates uses the Regular_Triangulation package of the CGAL library.
To properly connect to the CGAL library, one can add the following lines to the corresponding CMakeLists.txt file:

#for finding the CGAL library
find_package(CGAL)

#for including the header files
include(${CGAL_USE_FILE})

#for linking to the CGAL libraries
target_link_libraries(${PROJECT_NAME} ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES})
